* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f8f9fa;
}

.card {
    border-radius: 15px;
}

.navbar {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.header-top {
    width: 100%;
    display: flex;
    margin: 0 auto;
    height: 100px;
    position: relative;
}

.header-top-img {
    width: 18%;
    position: absolute;
    margin-left: 15px
}

.header-top-img > img {
    top: 0;
    height: 100px;
}

.header-top-menu {

    width: 50%;
    position: absolute;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    right: 0;
}

.header-top-menu > ul {

    margin-right: 10%;
}


.logo-center-view {
    width: 100%;
    height: 400px;
    background-image: url("/img/v4.0/center-img.png");
    background-color: rgba(0, 0, 0, 0.22);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
}

.header-top-menu > ul > li > a {
    border-radius: 5%;
}

.box-left-login {
    width: 55%;
    height: 500px;
    display: block;
}

.box-right-login {
    width: 65%;
    padding: 3% 0 3% 12%;
    display: block;
    float: left;
    height: 500px;
}

.box-offer-type {
    background-color: white;
    padding: 0 10px 5px 10px;
    margin: 20px 10px 10px 10px;
    height: 50%;
    border-radius: 10px;
    overflow: scroll;
}

.list-data-box {
    padding: 10px;
}

.container-pricing {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.style-button-login {
    background-color: #03b2c2;
    border-radius: 30px;
    margin: 15px;
    color: #ffffff;
    padding: 5px 20px 5px 20px;
    font-weight: bold;
}

.pricing-table {
    display: flex;
    position: relative;
}

.pricing-table::after {
    content: '';
    background-color: gray;
    position: absolute;
    height: 90%;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

/* Planes */
.planes {
    /* background-color: #c3c3c3; */
    flex-basis: 100%;
    padding: 60px 0 0 0;

}

.planes h1 {
    color: #ffffff;
    font-size: 34px;
    line-height: 36px;
    padding: 0 20px;
    margin: 0 0 34px 0;
}

.planes ul {
    list-style: none;
    text-align: center;
    font-size: 16px;
    margin: 0 5px 30px 5px;
}

.planes ul li {
    background-color: #cecece;
}

.planes ul li:nth-child(even) {
    background-color: #dddddd;
}

.planes ul li p {
    padding: 5px 10px;
}


/* Cards */
.card {
    flex-basis: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    margin-right: 20px;
}

.card:last-child {
    margin-right: 0;
}

.card h3 {
    color: #ffffff;
    margin: 20px 0 0 0;
    padding: 10px;
    text-align: center;
    position: relative;
}

.card h3::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid red;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.card h2 {
    text-align: center;
    font-size: 24px;
    margin: 20px 0 0 0;
    line-height: 36px;
}

.card span {
    display: block;
    text-align: center;
    font-size: 20px;
    margin: 0 0 15px 0;
}

.card ul {
    list-style: none;
    text-align: center;
    font-size: 16px;
    margin: 0 0 20px 0;
}

.card ul li {
    background-color: #cecece;
}

.card ul li:nth-child(even) {
    background-color: #dddddd;
}

.card ul li p {
    padding: 5px 10px;
}

.card .btn {
    color: #000000;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    background-color: red;
    display: block;
    color: #ffffff;
    text-transform: uppercase;
    max-width: 60%;
    margin: 0 auto 20px auto;
    border-radius: 10px;
    font-size: 16px;
    line-height: 16px;
}

/* grey Card */
.card.alt-grey h3 {
    background-color: #404040;
}

.card.alt-grey h3::after {
    border-top: 10px solid #404040;
}

.card.alt-grey .btn {
    background-color: #404040;
}

/* Cyan Card */
.card.alt-red h3 {
    background-color: #EF4436;
}

.card.alt-red h3::after {
    border-top: 10px solid #EF4436;
}

.card.alt-red .btn {
    background-color: #EF4436;
}

/* Cyan Card */
.card.alt-cyan h3 {
    background-color: #03b2c2;
}

.card.alt-cyan h3::after {
    border-top: 10px solid #03b2c2;
}

.card.alt-cyan .btn {
    background-color: #03b2c2;
}

/* Yellow Card */
.card.alt-yellow h3 {
    background-color: #0b145b;
}

.card.alt-yellow h3::after {
    border-top: 10px solid #0b145b;
}

.card.alt-yellow .btn {
    background-color: #0b145b;
}


#button {
    padding: 27px;
    margin: 0;
    justify-content: space-around;
    align-items: flex-end;
}


#button li {
    display: inline;

}

#button li a {
    font-family: Arial;
    font-size: 18px;
    text-decoration: none;
    float: right;
    padding: 10px;
    background-color: #ffffff;
    color: #404040;
    font-weight: bold;
}

#button li a:hover {
    background-color: #03b2c2;
    margin: 0;
    padding: 12px;

}

#boxLogin {
    display: flex;
    margin: 0;
    width: 100%;
    height: 500px;
    background-image: url("https://friendlypos.net/img/v4.0/SistemasAmigables-010.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.box-login {
    margin: 0;
    width: 60%;
    height: 380px;
    border: 15px;
    justify-items: center;
    padding: 15px;
    justify-content: center;
    border-radius: 40px;
    background-color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 768px) {
    /* Planes */
    .planes {
        /* background-color: #c3c3c3; */
        flex-basis: 100%;
        padding: 60px 0 0 0;

    }

    .planes h1 {
        color: #ffffff;
        font-size: 34px;
        line-height: 36px;
        padding: 0 20px;
        margin: 0 0 34px 0;
    }

    .planes ul {
        list-style: none;
        text-align: center;
        font-size: 16px;
        margin: 0 5px 30px 5px;
    }

    .planes ul li {
        background-color: #cecece;
    }

    .planes ul li:nth-child(even) {
        background-color: #dddddd;
    }

    .planes ul li p {
        padding: 6px 10px;
        font-size: 14px;
    }




    form{
    padding: 5px
}
    .logo-center-view {
        width: 100%;
        height: 200px;
        background-image: url("/img/v4.0/center-img.png");
        background-color: rgba(0, 0, 0, 0.22);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: flex;
        justify-content: center;
        justify-items: center;
    }
    .box-login {
        margin: 0;
        width: 100%;
        height: 310px;
        border: 15px;
        justify-items: center;
        padding: 15px;
        justify-content: center;
        border-radius: 40px;
        background-color: rgba(255, 255, 255, 0.65);
    }

    #boxLogin {
        display: flex;
        margin: 0;
        width: 100%;
        height: 380px;
        background-image: url("https://friendlypos.net/img/v4.0/SistemasAmigables-010.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .box-left-login {
        width: 100%;
        height: 350px;
        display: block;
    }

    .box-right-login {

        width: 50%;
        padding: 0;
        left: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 400px;
    }
    .login-icon {
        margin: auto;
        padding: 5px;
        clear: both;
        height: 65px;
        color: #f9f9fa;
        width: 30%;
        display: flex;
        justify-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #ababac;
    }
    .login-fa-768{
        display: block;
    }
    .login-fa-1440{
        display: none;
    }
    .planes-pos ul li p {
        font-size: 14px;
    }
}

@media (min-width: 1440px) {
    form{
        padding: 15px
    }

    .logo-center-view {
        width: 100%;
        height: 400px;
        background-image: url("/img/v4.0/Untitled-1ok-01.png");
        background-color: rgba(0, 0, 0, 0.22);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: flex;
        justify-content: center;
        justify-items: center;
    }
    .login-icon {
        margin: auto;
        padding: 20px;
        clear: both;
        height: 80px;
        color: #f9f9fa;
        width: 24%;
        display: flex;
        justify-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #ababac;
    }

    .box-login {
        margin: 0;
        width: 50%;
        height: 380px;
        border: 15px;
        justify-items: center;
        padding: 15px;
        justify-content: center;
        border-radius: 40px;
        background-color: rgba(255, 255, 255, 0.65);
    }

    #boxLogin {
        display: flex;
        margin: 0;
        width: 100%;
        height: 500px;
        background-image: url("https://friendlypos.net/img/v4.0/SistemasAmigables-010.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .box-left-login {
        width: 55%;
        height: 500px;
        display: block;
    }

    .box-right-login {
        width: 55%;
        padding: 3% 0 3% 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 500px;
    }
    /* Planes */
    .planes-pos {
        /* background-color: #c3c3c3; */
        flex-basis: 100%;
        padding: 70px 0 0 0;

    }

    .planes-pos h1 {
        color: #ffffff;
        font-size: 34px;
        line-height: 36px;
        padding: 0 20px;
        margin: 0 0 57px 0;
    }

    .planes-pos ul {
        list-style: none;
        text-align: center;
        font-size: 16px;
        margin: 0 5px 30px 5px;
    }

    .planes-pos ul li {
        background-color: #cecece;
        margin-bottom: 10px;
    }

    .planes-pos ul li:nth-child(even) {
        background-color: #dddddd;
    }
    .planes-pos ul li p {
        font-size: 14px;
        padding: 6px 5px;
    }

    /* Cards */
    .card-pos {
        flex-basis: 100%;
        background-color: #ffffff;
        border-radius: 20px;
        margin-right: 20px;
    }

    .card-pos:last-child {
        margin-right: 0;
    }

    .card-pos h3 {
        color: #ffffff;
        margin: 20px 0 0 0;
        padding: 10px;
        text-align: center;
        position: relative;
    }

    .card-pos h3::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid red;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .card-pos h2 {
        text-align: center;
        font-size: 24px;
        margin: 20px 0 0 0;
        line-height: 36px;
    }

    .card-pos span {
        display: block;
        text-align: center;
        font-size: 20px;
        margin: 0 0 15px 0;
    }

    .card-pos ul {
        list-style: none;
        text-align: center;
        font-size: 16px;
        margin: 0 0 20px 0;
    }

    .card-pos ul li {
        background-color: #cecece;
        margin-bottom: 8px;
    }

    .card-pos ul li:nth-child(even) {
        background-color: #dddddd;
    }

    .card-pos ul li p {
        padding: 4px 5px 3px 5px;
    }

    .card-pos .btn {
        color: #000000;
        text-decoration: none;
        text-align: center;
        padding: 15px;
        background-color: red;
        display: block;
        color: #ffffff;
        text-transform: uppercase;
        max-width: 60%;
        margin: 0 auto 20px auto;
        border-radius: 10px;
        font-size: 16px;
        line-height: 16px;
    }
    /* grey Card */
    .card-pos.alt-grey h3 {
        background-color: #404040;
    }

    .card-pos.alt-grey h3::after {
        border-top: 10px solid #404040;
    }

    .card-pos.alt-grey .btn {
        background-color: #404040;
    }

    /* Cyan Card */
    .card-pos.alt-red h3 {
        background-color: #EF4436;
    }

    .card-pos.alt-red h3::after {
        border-top: 10px solid #EF4436;
    }

    .card-pos.alt-red .btn {
        background-color: #EF4436;
    }

    /* Cyan Card */
    .card-pos.alt-cyan h3 {
        background-color: #03b2c2;
    }

    .card-pos.alt-cyan h3::after {
        border-top: 10px solid #03b2c2;
    }

    .card-pos.alt-cyan .btn {
        background-color: #03b2c2;
    }

    /* Yellow Card */
    .card-pos.alt-yellow h3 {
        background-color: #0b145b;
    }

    .card-pos.alt-yellow h3::after {
        border-top: 10px solid #0b145b;
    }

    .card-pos.alt-yellow .btn {
        background-color: #0b145b;
    }
}